home *** CD-ROM | disk | FTP | other *** search
/ Compendium Deluxe 1 / LSD Compendium Deluxe 1.iso / a / programming / assemblers / cas.lha / semi.c < prev    next >
Encoding:
C/C++ Source or Header  |  1992-08-11  |  137 b   |  9 lines

  1. #include <stdio.h>
  2. main() {
  3.    int Ch;
  4.    while ((Ch = getchar()) != EOF) {
  5.       if (Ch == ';') putchar(';');
  6.       putchar(Ch);
  7.    }
  8. }
  9.